Skip to main content

Reset Password Endpoint

Overview

This endpoint allows users to reset their password using a one-time password (OTP).

Request Details

HTTP Method

POST

Route

/[email]/reset-password

Headers

HeaderValueRequiredDescription
Content-Typeapplication/jsonYesIndicates JSON request body

Route Parameters

ParameterTypeRequiredDescription
emailstringYesThe email address of the user

Query Parameters

No query parameters required.

Request Body

FieldTypeRequiredDescription
otpstringYesOne-time password received via email
new_passwordstringYesNew password for the account

Response Format

Response Status Codes

Status CodeDescription
200Password successfully reset
400Invalid request body or missing fields
404Email not found or OTP expired
429Too many reset attempts
500Server error during password reset

Success Response (200 OK)

{
"success": true,
"message": "Successfully validated OTP and reset password."
}

Error Response

Invalid or Expired OTP

{
"success": false,
"message": "Invalid or expired OTP."
}

No OTP Found

{
"success": false,
"message": "No OTP found. Please request a new OTP."
}

Password Reset Failed

{
"success": false,
"message": "Something went wrong. Could not reset password. Please try again."
}

TypeScript Interface

interface ResetPasswordRequest {
otp: string
new_password: string
}

interface ResetPasswordResponse {
success: boolean
message: string
}

Python Model

from pydantic import BaseModel

class ResetPasswordRequest(BaseModel):
otp: str
new_password: str

class ResetPasswordResponse(BaseModel):
success: bool
message: str

Code Examples

Python Example

import httpx
from pydantic import BaseModel
from typing import Optional

class ResetPasswordRequest(BaseModel):
otp: str
new_password: str

class ResetPasswordResponse(BaseModel):
success: bool
message: str

async def reset_password(email: str, otp: str, new_password: str) -> ResetPasswordResponse:
async with httpx.AsyncClient() as client:
response = await client.post(
f"https://neptun-webui.vercel.app/{email}/reset-password",
json={"otp": otp, "new_password": new_password}
)
response.raise_for_status()
return ResetPasswordResponse(**response.json())

cURL Example

curl -X POST https://neptun-webui.vercel.app/user@example.com/reset-password \
-H "Content-Type: application/json" \
-d '{"otp": "123456", "new_password": "newSecurePassword123"}'

TypeScript/JavaScript Example

async function resetPassword(
email: string,
otp: string,
newPassword: string
): Promise<ResetPasswordResponse> {
const response = await fetch(
`https://neptun-webui.vercel.app/${email}/reset-password`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
otp,
new_password: newPassword,
}),
}
)

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}

return await response.json() as ResetPasswordResponse
}

Notes

  • OTP must be valid and not expired
  • New password must meet security requirements (min 8 chars, etc.)
  • Limited number of reset attempts per email address
  • Password reset invalidates all existing sessions
  • Email address must be URL encoded in the request path